[2.5.1-RELEASE][root@firewall2.home.arpa]/root: vtysh

Hello, this is FRRouting (version 7.5).
Copyright 1996-2005 Kunihiro Ishiguro, et al.

firewall2.home.arpa# show running-config no-header 
frr version 7.5
frr defaults traditional
hostname firewall2.home.arpa
service integrated-vtysh-config
!
password LAB
!
ip router-id 192.168.2.1
!
interface em1
 description "ospfd: LAN_passive"
 ip ospf area 0.0.0.0
 ip ospf cost 4
 ip ospf priority 0
!
interface ovpnc2
 description "ospfd: LAN_passive - ospfd: TUNNEL1_active"
 ip ospf area 0.0.0.0
 ip ospf authentication message-digest
 ip ospf cost 8000
 ip ospf message-digest-key 1 md5 BAAAAAAAAAAAAAAD
 ip ospf priority 2
!
interface ovpnc3
 description "ospfd: LAN_passive - ospfd: TUNNEL1_active - ospfd: TUNNEL2_active"
 ip ospf area 0.0.0.0
 ip ospf authentication message-digest
 ip ospf cost 9000
 ip ospf message-digest-key 1 md5 BAAAAAAAAAAAAAAD
 ip ospf priority 2
!
router ospf
 ospf router-id 192.168.2.1
 auto-cost reference-bandwidth 400000
 redistribute connected metric 20 route-map CONNECT
 passive-interface em1
 area 0.0.0.0 authentication message-digest
!
ip prefix-list CONNECT seq 10 permit 10.2.194.0/24
!
route-map CONNECT permit 10
 match ip address prefix-list CONNECT
!
line vty
!
end
firewall2.home.arpa# 
